@charset "UTF-8";
/*!
 * @name global.css
 * @author xying
 * @date 2016-1-15
 */
@font-face {
    font-family: "icons";
    font-weight: normal;
    font-style: normal;
    src: url("../fonts/icons.eot");
    src: url("../fonts/icons.eot?#iefix") format("embedded-opentype"), url("../fonts/icons.svg#icons") format("svg"), url("../fonts/icons.woff") format("woff");
}

[class^="font-icons-"],
[class*=" font-icons-"] {
    font-family: "icons";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: inherit;
    float: none;
    margin: 0;
    vertical-align: -0.25em;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
}

.font-icons-1:before {
    content: "\EA01";
}

.font-icons-10:before {
    content: "\EA02";
}

.font-icons-1000:before {
    content: "\EA03";
}

.font-icons-11:before {
    content: "\EA04";
}

.font-icons-12:before {
    content: "\EA05";
}

.font-icons-13:before {
    content: "\EA06";
}

.font-icons-14:before {
    content: "\EA07";
}

.font-icons-15:before {
    content: "\EA08";
}

.font-icons-16:before {
    content: "\EA09";
}

.font-icons-17:before {
    content: "\EA0A";
}

.font-icons-18:before {
    content: "\EA0B";
}

.font-icons-19:before {
    content: "\EA0C";
}

.font-icons-2:before {
    content: "\EA0D";
}

.font-icons-20:before {
    content: "\EA0E";
}

.font-icons-21:before {
    content: "\EA0F";
}

.font-icons-22:before {
    content: "\EA10";
}

.font-icons-222:before {
    content: "\EA11";
}

.font-icons-23:before {
    content: "\EA12";
}

.font-icons-24:before {
    content: "\EA13";
}

.font-icons-25:before {
    content: "\EA14";
}

.font-icons-26:before {
    content: "\EA15";
}

.font-icons-27:before {
    content: "\EA16";
}

.font-icons-28:before {
    content: "\EA17";
}

.font-icons-29:before {
    content: "\EA18";
}

.font-icons-3:before {
    content: "\EA19";
}

.font-icons-30:before {
    content: "\EA1A";
}

.font-icons-31:before {
    content: "\EA1B";
}

.font-icons-32:before {
    content: "\EA1C";
}

.font-icons-33:before {
    content: "\EA1D";
}

.font-icons-34:before {
    content: "\EA1E";
}

.font-icons-35:before {
    content: "\EA1F";
}

.font-icons-36:before {
    content: "\EA20";
}

.font-icons-37:before {
    content: "\EA21";
}

.font-icons-38:before {
    content: "\EA22";
}

.font-icons-39:before {
    content: "\EA23";
}

.font-icons-4:before {
    content: "\EA24";
}

.font-icons-40:before {
    content: "\EA25";
}

.font-icons-41:before {
    content: "\EA26";
}

.font-icons-42:before {
    content: "\EA27";
}

.font-icons-44:before {
    content: "\EA28";
}

.font-icons-45:before {
    content: "\EA29";
}

.font-icons-5:before {
    content: "\EA2A";
}

.font-icons-6:before {
    content: "\EA2B";
}

.font-icons-7:before {
    content: "\EA2C";
}

.font-icons-8:before {
    content: "\EA2D";
}

.font-icons-9:before {
    content: "\EA2E";
}

.font-icons-ma:before {
    content: "\EA2F";
}

.font-icons-tel:before {
    content: "\EA30";
}

.font-icons-vr:before {
    content: "\EA31";
}

/**
 * @method 清除浮动 %clearfix 
 * @description 清除浮动
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %clearfix;
 * }
 * ```
 * 
 * ```css
 * 	div {
	    *zoom: 1;
	}
	div:after {
	    display: block;
	    clear: both;

	    height: 0;

	    content: '\20';
	}
 * ```
 */
.common-form .select-wrap {
    *zoom: 1;
}

.common-form .select-wrap:after {
    display: block;
    clear: both;
    height: 0;
    content: '\20';
}

/**
 * @method 去掉虚线框 %outline 
 * @description 去掉虚线框
 * @example 调用
 * 
 * ```scss
 * div {
 *    @ extend %outline;
 * }
 * ```
 * 
 * ```css
	div {
		outline: thin dotted;
		outline: 5px auto -webkit-focus-ring-color;
		outline-offset: -2px;
	}
 * ```
 */
/**
 * @method 文字不换行后面加省略号 %text-overflow 
 * @description 文字不换行后面加省略号
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %text-overflow;
 * }
 * ```
 * 
 * ```css
	div {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
 * ```
 */
/**
 * @method 内容换行 %word-wrap 
 * @description 内容换行
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %word-wrap;
 * }
 * ```
 * 
 * ```css
	div {
	    word-wrap: break-word;
	    white-space: pre-wrap;
	    word-break: break-all;
	}
 * ```
 */
/**
 * @method 透明层opacity 
 * @description 透明层 内容也透明
 * @param {number} $opacity - 透明度 0 ~ 1之间
 * @example 调用
 * 
 * ```scss
 * div {
 *    @include opacity(.5);
 * }
 * ```
 * 
 * ```css
 * div {
	  opacity: .5;
	  filter: alpha(opacity=50);
 * }
 * ```
 */
/**
 * @method 背景透明层transparent 
 * @description 透明层只处理背景透明
 * @param {string} $color - 背景透明层的颜色
 * @param {number} $alpha - 透明度 0 ~ 1之间
 * @example 调用
 * 
 * ```scss
 * div {
 *    @include transparent(#000, .5);
 * }
 * ```
 * 
 * ```css
 * div {
 *    	background-color: transparent;
		background-color: (0,0,0,.5);
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7fffffff, endColorstr=#7fffffff,);
		zoom: 1;
 * }
 * ```
 */
/**
 * @method triangle 
 * @description 生成一个三角形图标
 * @param {string} $size - 三角的大小
 * @param {string} $color - 三角颜色
 * @param {string} $direction - 三角的方向 up, down, left, right
 * @example 调用
 * 
 * ```scss
 * i {
 *    @include triangle(5px, #bbb, up); 
 * }
 * ```
 * 
 * ```css
 * i {
 *    width: 0;
      height: 0;
      border-width: 5px;
      border-style: solid;
      border-color: transparent;
      border-bottom-color: #bbb;
 * }
 * ```
 */
/**
* @method 水平线hr nav-divider 
* @description 透明层 内容也透明
* @param {string} $color=#e5e5e5 - 线的颜色
* @param {string} $line-height-computed - 线的高度，空间
* @example 调用
* 
* ```scss
* div {
*    @include nav-divider(#e5e5e5, 24px);
* }
* ```
* 
* ```css
* div {
	  height: 1px;
	  margin: 11px 0;
	  overflow: hidden;
	  background-color: #e5e5e5;
* }
* ```
*/
/*!
 * @name <%= name %>
 * @author <%= author %>
 * @date <%= date %>
 */
/**
 * @method 清除浮动 %clearfix 
 * @description 清除浮动
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %clearfix;
 * }
 * ```
 * 
 * ```css
 * 	div {
	    *zoom: 1;
	}
	div:after {
	    display: block;
	    clear: both;

	    height: 0;

	    content: '\20';
	}
 * ```
 */
.common-form .select-wrap {
    *zoom: 1;
}

.common-form .select-wrap:after {
    display: block;
    clear: both;
    height: 0;
    content: '\20';
}

/**
 * @method 去掉虚线框 %outline 
 * @description 去掉虚线框
 * @example 调用
 * 
 * ```scss
 * div {
 *    @ extend %outline;
 * }
 * ```
 * 
 * ```css
	div {
		outline: thin dotted;
		outline: 5px auto -webkit-focus-ring-color;
		outline-offset: -2px;
	}
 * ```
 */
/**
 * @method 文字不换行后面加省略号 %text-overflow 
 * @description 文字不换行后面加省略号
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %text-overflow;
 * }
 * ```
 * 
 * ```css
	div {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
 * ```
 */
/**
 * @method 内容换行 %word-wrap 
 * @description 内容换行
 * @example 调用
 * 
 * ```scss
 * div {
 *    @extend %word-wrap;
 * }
 * ```
 * 
 * ```css
	div {
	    word-wrap: break-word;
	    white-space: pre-wrap;
	    word-break: break-all;
	}
 * ```
 */
/**
 * @method 透明层opacity 
 * @description 透明层 内容也透明
 * @param {number} $opacity - 透明度 0 ~ 1之间
 * @example 调用
 * 
 * ```scss
 * div {
 *    @include opacity(.5);
 * }
 * ```
 * 
 * ```css
 * div {
	  opacity: .5;
	  filter: alpha(opacity=50);
 * }
 * ```
 */
/**
 * @method 背景透明层transparent 
 * @description 透明层只处理背景透明
 * @param {string} $color - 背景透明层的颜色
 * @param {number} $alpha - 透明度 0 ~ 1之间
 * @example 调用
 * 
 * ```scss
 * div {
 *    @include transparent(#000, .5);
 * }
 * ```
 * 
 * ```css
 * div {
 *    	background-color: transparent;
		background-color: (0,0,0,.5);
		filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7fffffff, endColorstr=#7fffffff,);
		zoom: 1;
 * }
 * ```
 */
/**
 * @method triangle 
 * @description 生成一个三角形图标
 * @param {string} $size - 三角的大小
 * @param {string} $color - 三角颜色
 * @param {string} $direction - 三角的方向 up, down, left, right
 * @example 调用
 * 
 * ```scss
 * i {
 *    @include triangle(5px, #bbb, up); 
 * }
 * ```
 * 
 * ```css
 * i {
 *    width: 0;
      height: 0;
      border-width: 5px;
      border-style: solid;
      border-color: transparent;
      border-bottom-color: #bbb;
 * }
 * ```
 */
/**
* @method 水平线hr nav-divider 
* @description 透明层 内容也透明
* @param {string} $color=#e5e5e5 - 线的颜色
* @param {string} $line-height-computed - 线的高度，空间
* @example 调用
* 
* ```scss
* div {
*    @include nav-divider(#e5e5e5, 24px);
* }
* ```
* 
* ```css
* div {
	  height: 1px;
	  margin: 11px 0;
	  overflow: hidden;
	  background-color: #e5e5e5;
* }
* ```
*/
@font-face {
    font-family: "validate";
    font-weight: normal;
    font-style: normal;
    src: url("../fonts/validate.eot");
    src: url("../fonts/validate.eot?#iefix") format("embedded-opentype"), url("../fonts/validate.woff") format("woff");
}

[class^="font-validate-"], .common-form label.error:before,
[class*=" font-validate-"] {
    font-family: "validate";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: inherit;
    float: none;
    margin: 0;
    vertical-align: -0.25em;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
}

.font-validate-13:before {
    content: "\EA01";
}

.font-validate-33:before, .common-form label.error:before {
    content: "\EA02";
}

.common-form .hidden {
    display: none !important;
}

.common-form textarea,
.common-form input[type="number"],
.common-form input[type="text"],
.common-form input[type="password"],
.common-form select {
    text-indent: 10px;
    height: 32px;
    line-height: 14px;
    border: 1px solid #ddd;
    font-size: 12px;
    font-family: simsun;
    border-radius: 3px;
    width: 50%;
}

.common-form button,
.common-form .btn {
    width: 120px;
    background: #e43;
    line-height: 32px;
    height: 34px;
    text-indent: 0 !important;
}

.common-form button:before,
.common-form .btn:before {
    vertical-align: -2px;
    margin-right: 5px;
}

.common-form button:focus,
.common-form .btn:focus {
    outline: none;
}

.common-form button:hover,
.common-form .btn:hover {
    opacity: .8;
}

.common-form textarea {
    text-indent: 10px;
    min-height: 34px;
    resize: none;
}

.common-form select {
    height: 34px;
    text-indent: 0 !important;
}

.common-form .select-item {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}

.common-form .select-item input {
    margin-right: 5px;
    vertical-align: -1px;
}

.common-form .label-group {
    line-height: 2;
}

.common-form .label-group label {
    display: inline-block;
    margin-right: 15px;
}

.common-form .label-group input {
    font-family: simsun;
    width: 13px;
    height: 13px;
    margin-right: 5px;
    vertical-align: -2px;
}

.common-form .code-wrap-outer {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
}

.common-form .code-wrap {
    display: table;
    width: 100%;
}

.common-form .code-wrap .input {
    margin-right: -50px;
}

.common-form .code-wrap .code-item {
    display: table-cell;
    width: 100%;
    vertical-align: top;
}

.common-form .code-wrap input[type="text"],
.common-form .code-wrap .code-txt {
    width: 100% !important;
    padding: 0;
    text-indent: 10px;
}

.common-form .code-wrap .code-item-img {
    padding-left: 15px;
    white-space: nowrap;
    cursor: pointer;
}

.common-form .code-wrap .code-img {
    width: 90px;
    height: 32px;
    vertical-align: middle;
    border: 1px solid #e3e3e3;
}

.common-form .code-wrap .code-title {
    padding-left: 5px;
    text-decoration: none;
    color: #999;
}

.common-form .code-wrap .code-btn {
    font-size: 12px;
    width: auto;
    padding: 0 10px;
    vertical-align: middle;
}

.common-form .code-wrap .code-btn.disabled {
    cursor: no-drop;
}

.common-form ul {
    display: table;
    width: 100%;
}

.common-form .ajaxbind .field > div {
    display: flex;
}

.common-form .item {
    height: 46px;
    display: table-row;
}

.common-form .item .label {
    width: 20%;
    text-align: right;
    display: table-cell;
    padding-right: 10px;
    padding-top: 5px;
    vertical-align: top;
    white-space: nowrap;
}

.common-form .item .field {
    width: 80%;
    display: table-cell;
    vertical-align: top;
}

.common-form .item.submit {
    height: 42px;
}

.common-form .item.submit .field {
    display: block;
    width: 50%;
    text-align: center;
}

.common-form .item.valid-error {
    height: auto;
}

.common-form-control .item {
    width: 100%;
}

.common-form-control .item.submit .field {
    width: 100%;
}

.common-form-control .item.submit input {
    width: 100%;
}

.common-form-control .item.submit button {
    font-family: microsoft yahei;
}

.common-form-control .btn,
.common-form-control select,
.common-form-control textarea,
.common-form-control input[type="number"],
.common-form-control input[type="text"],
.common-form-control input[type="password"],
.common-form-control button,
.common-form-control .text {
    display: block;
    width: 100%;
}

.common-form-control .code-wrap-outer {
    width: 100%;
}

.common-form-lg input.btn,
.common-form-lg button.btn,
.common-form-lg input[type="number"],
.common-form-lg input[type="text"],
.common-form-lg input[type="password"],
.common-form-lg input.text {
    font-size: 14px;
    line-height: 1.3333333;
    height: 44px;
    text-indent: 15px;
    border-radius: 6px;
}

.common-form-lg input.btn,
.common-form-lg button.btn {
    height: 46px;
    line-height: 44px;
    font-size: 16px !important;
}

.common-form-lg textarea {
    min-height: 46px;
    line-height: 21px;
    border-radius: 5px;
}

.common-form-lg .item {
    min-height: 70px;
    height: 70px;
}

.common-form-lg .item .label {
    padding-top: 11px;
}

.common-form-lg .code-wrap input[type="text"],
.common-form-lg .code-wrap .code-txt {
    text-indent: 15px;
}

.common-form-lg .code-wrap .code-img {
    width: 123px;
    height: 43px;
}

.common-form-lg .code-wrap .code-btn {
    font-size: 14px !important;
}

.common-form-lg .chosen-container-single .chosen-single {
    height: 46px !important;
    line-height: 46px !important;
    text-align: left;
}

.common-form-lg .chosen-container-single .chosen-single div b {
    background-position: 0 13px;
}

.common-form label.error {
    color: #f00;
    font-family: simsun;
    font-size: 12px;
    padding-right: 5px;
    display: inline-block;
}

.common-form label.error:before {
    font-size: 16px !important;
    margin-left: 3px !important;
    margin-right: 3px !important;
    vertical-align: -4px !important;
}

.common-form .error-wrap {
    height: 14px;
    line-height: 1;
    display: inline-block;
}

.common-form .required:before {
    content: "* ";
    color: #f00;
    vertical-align: middle;
}

.newdisb ul {
    display: block;
}

/*
rest
*/
/* house-ad */
.house-ad {
    position: relative;
}

.house-ad img {
    display: block;
    max-width: 100%;
}

.house-ad .ad-txt {
    background-image: url("../images/ad-img.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    color: #fff;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    text-align: center;
    width: 30px;
    position: absolute;
    bottom: 0;
    left: 5px;
    z-index: 3;
}

.house-ad.right-bottom .ad-txt {
    bottom: 0;
    right: 5px;
    left: initial;
}

.house-ad.right-top .ad-txt {
    top: 5px;
    right: 5px;
    left: initial;
}

.house-ad.left-top .ad-txt {
    top: 5px;
}

/*
color
*/
.major-c,
.major-c a {
    color: #e43;
}

.c-e43,
.c-e43 a {
    color: #e43 !important;
}

.c-333,
.c-333 a {
    color: #333 !important;
}

.c-666,
.c-666 a {
    color: #666 !important;
}

.c-888,
.c-888 a {
    color: #888 !important;
}

.c-999,
.c-999 a {
    color: #999 !important;
}

.c-ccc,
.c-ccc a {
    color: #ccc !important;
}

.c-fff,
.c-fff a {
    color: #fff !important;
}

.c-f00,
.c-f00 a {
    color: #f00 !important;
}

.c-f50,
.c-f50 a {
    color: #f50 !important;
}

/*
图标文本
*/
.ico-word i {
    vertical-align: -2px;
    margin-right: 5px;
}

/*
font
*/
.bold {
    font-weight: 700 !important;
}

.normal {
    font-weight: normal !important;
}

.arial {
    font-family: arial;
}

.georgia {
    font-family: georgia;
}

/*
边框 border
*/
.bd-gray {
    border: 1px solid #ddd;
}

.bdr5 {
    border-radius: 5px;
}

/*
暂无数据
*/
.noinfo {
    color: #666;
    font-family: Microsoft YaHei;
    font-size: 20px;
    height: 200px;
    line-height: 200px;
    text-align: center;
}

/*
选项卡隐藏
 */
.dis-default {
    display: none;
}

/*
form
*/
input[type=text], input[type=password], textarea {
    border: 1px solid #ddd;
    font-family: microsoft yahei;
    font-size: 14px;
    height: 32px;
    line-height: 20px;
    vertical-align: middle;
}

select {
    border: 1px solid #ddd;
    color: #999;
    font-family: Microsoft yahei;
    padding: 7px;
}

/*
btn
*/
.btn {
    background: #e43 none repeat scroll 0 0;
    border: 1px solid #e43;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    font-family: microsoft yahei;
    font-size: 14px;
    height: 32px;
    line-height: 30px;
    padding: 0 12px;
}

.btn:hover {
    color: #fff;
    cursor: pointer;
    opacity: 0.9;
    text-decoration: none;
}

.btn.btn-orange {
    background-color: #f60;
    border-color: #f60;
}

.btn.btn-dark-gray {
    background-color: #ccc;
    border-color: #ccc;
}

.btn.btn-dark-blue {
    background-color: #006ec7;
    border-color: #006ec7;
}

.btn.btn-disable {
    background: #dbdbdb;
    color: #666;
    cursor: default;
    border-color: #dbdbdb;
}

a.btn {
    display: inline-block;
}

/* ============
header 头部
============= */
.header {
    width: 100%;
    height: 60px;
    min-width: 1200px;
}

.header .header-bg {
    position: absolute;
    background-color: #fff;
    left: 0;
    top: 0;
    height: 60px;
    min-width: 1200px;
    width: 100%;
    opacity: 0.8;
}

.header .container {
    position: relative;
}

.header .logo {
    height: 60px;
    width: 120px;
    overflow: hidden;
    display: table;
    position: relative;
    text-align: center;
}

.header .logo .logocen {
    display: table-cell;
    vertical-align: middle;
}

.header-spacer {
    height: 60px;
}

.nav {
    height: 60px;
    line-height: 60px;
    margin-left: 10px;
}

.nav li {
    float: left;
    position: relative;
    margin-right: 1px;
}

.nav li a {
    color: #333;
    display: block;
    padding: 0 13px;
    font-size: 16px;
}

.nav li a i {
    margin-left: 3px;
    vertical-align: -1px;
}

.nav li a:hover, .nav li a.act {
    text-decoration: none;
}

.nav li a.act {
    background: #e43;
    color: #fff;
}

.nav li .nav-more {
    background: #fff;
    border-bottom: none;
    display: none;
    margin-left: -55px;
    min-width: 130px;
    position: absolute;
    z-index: 10;
    background: #fff;
    top: 60px;
    margin-top: 10px;
}

.nav li .nav-more:before {
    position: absolute;
    content: ' ';
    line-height: 0;
    top: -19px;
    left: 50%;
    margin-left: -9px;
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 9px;
    border-bottom-color: #ddd;
}

.nav li .nav-more:after {
    position: absolute;
    content: ' ';
    line-height: 0;
    top: -18px;
    left: 50%;
    margin-left: -9px;
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 9px;
    border-bottom-color: #fff;
}

.nav li .nav-more a {
    border: 1px solid #e7e7e7;
    margin-top: -1px;
    color: #666;
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    white-space: nowrap;
    background: #fff;
    font-size: 14px;
}

.nav li .nav-more a:hover {
    background: #f5f5f5;
    color: #f00;
}

.nav li.open > a {
    background: #e43;
    color: #fff;
}

.nav li.open .nav-more {
    display: block;
}

/*
公众号
 */
.xcx-image {
    float: left;
}

.xcx-image .xcx-image-txt {
    font-size: 12px;
    line-height: 60px;
    color: #e43;
}

.xcx-image .xcx-image-content {
    background: #fff;
    display: none;
    width: 304px;
    height: 150px;
    margin-left: -100px;
}

/*
地区
*/
.area {
    background: #e43;
    border-radius: 20px;
    height: 24px;
    margin-top: 18px;
    margin-left: 15px;
    padding-left: 10px;
    padding-right: 10px;
    width: 75px;
    position: relative;
}

.area .cur-area {
    color: #fff;
    height: 24px;
    line-height: 22px;
    overflow: hidden;
    text-align: center;
    width: 60px;
}

.area i {
    color: #fff;
    position: absolute;
    top: 3px;
    right: 10px;
}

.area .more-area {
    border-bottom: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7;
    background: #fff;
    display: none;
    position: absolute;
    top: 42px !important;
    left: 0;
    margin-top: 10px;
}

.area .more-area:before {
    position: absolute;
    content: ' ';
    line-height: 0;
    top: -18px;
    left: 50%;
    margin-left: -9px;
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 9px;
    border-bottom-color: #ddd;
}

.area .more-area:after {
    position: absolute;
    content: ' ';
    line-height: 0;
    top: -17px;
    left: 50%;
    margin-left: -9px;
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 9px;
    border-bottom-color: #fff;
}

.area .more-area a {
    border: 1px solid #e7e7e7;
    display: block;
    height: 40px;
    line-height: 40px;
    margin-bottom: -1px;
    margin-right: -1px;
    overflow: hidden;
    text-align: center;
    width: 99px;
}

.area .more-area a:hover {
    color: #f00;
    text-decoration: none;
}

.area .more-area-more {
    left: -105px !important;
    width: 300px;
}

.area .more-area-more a {
    float: left;
}

/*
登录状态
*/
.loginbar {
    background: #e43;
    float: right;
    height: 60px;
    width: 160px;
    color: #fff;
    text-align: center;
    line-height: 60px;
}

.loginbar .login-btn {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-bottom: none;
    display: none;
    width: 158px;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 10;
}

.loginbar .login-btn li {
    border-bottom: 1px solid #e7e7e7;
    height: 40px;
    line-height: 40px;
}

.loginbar .login-btn li a {
    display: block;
}

.loginbar .login-btn li a:hover {
    color: #f00;
    text-decoration: none;
}

.loginbar .login-btn li i {
    color: #333;
    font-size: 18px;
    margin-right: 13px;
    vertical-align: -3px;
}

.loginbar .login-btn li i.qq {
    color: #43acd9;
}

.loginbar .login-btn li i.sina {
    color: #eb7464;
}

.loginbar .login-btn li i.weixin {
    color: #3eb135;
}

.loginbar .open .login-btn {
    display: block;
}

.login-out {
    line-height: 60px;
    height: 60px;
    text-align: center;
}

.login-out .login-out-btn a {
    color: #fff;
    margin: 0 5px;
}

.login-out .login-out-btn a:hover {
    text-decoration: none;
}

.login-out .login-out-btn i {
    color: #fff;
    font-size: 14px;
    margin-right: 5px;
    vertical-align: -2px;
}

.login-in {
    position: relative;
    cursor: pointer;
}

.login-in .login-info {
    color: #fff;
    height: 60px;
    line-height: 56px;
    text-align: center;
}

.login-in .login-info span {
    display: inline-block;
    font-size: 12px;
    max-width: 75px;
    margin-left: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    white-space: nowrap;
}

.login-in .login-info i {
    font-size: 12px;
    margin-left: 5px;
    vertical-align: middle;
}

.login-in .login-info i.font-icons-1 {
    font-size: 14px;
}

.login-in .login-info a {
    color: #fff;
    text-decoration: none;
}

/* ============
footer 底部
============= */
.footer {
    background: #474747;
    color: #ddd;
    font-size: 12px;
    min-width: 1200px;
    padding: 30px 0;
}

.footer a {
    color: #ddd;
}

.footer a:hover {
    color: #e43;
}

.footer .footer-nav {
    border-bottom: 1px solid #777;
    padding-bottom: 30px;
}

.footer dl {
    border-right: 1px solid #555;
    float: left;
    min-height: 162px;
    padding-left: 20px;
    padding-right: 10px;
    width: 123px;
}

.footer dl dt {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
}

.footer dl dd a {
    display: block;
    height: 24px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer dl dd p {
    display: inline-block;
    *float: left;
    margin-left: 23px;
    text-align: center;
    width: 110px;
}

.footer dl dd p img {
    display: block;
    margin: 0 auto;
}

.footer dl.download-mobile {
    border-right-color: #474747;
    padding-right: 0;
    width: 407px;
}

.floatLeftLink {
    position: fixed;
    left: 50%;
    margin-left: -660px;
    top: 50%;
    z-index: 900;
}

.web-info, .copy-right {
    text-align: center;
    line-height: 2;
}

.web-info a {
    margin: 0 10px;
}

.switch-language {
    display: inline-block;
    margin: 0 10px;
    cursor: pointer;
}

.switch-language-text {
    display: inline-block;
}

.switch-language-more {
    background: #fff;
    border: 1px solid #ccc;
    min-width: 100%;
    display: none;
}

.switch-language-more li {
    padding: 0 15px;
    cursor: pointer;
    height: 28px;
    line-height: 28px;
    color: #333;
    text-align: left;
}

.switch-language-more li:hover {
    background: #ddd;
}

/* ============
page 分页
============ */
.mtop0 {
    margin-top: 0;
}

.p-bar {
    clear: both;
    text-align: center;
}

.p-bar a,
.p-bar span {
    border: 1px solid #eee;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    line-height: 36px;
    margin: 0 2px 2px;
    padding: 0 12px;
}

.p-bar .current,
.p-bar a:hover {
    background: #e43;
    border: 1px solid #e43;
    color: #fff;
    text-decoration: none;
}

/* ================
current-location 当前位置
================ */
.current-location {
    color: #999;
    font-size: 14px;
    height: 34px;
    line-height: 34px;
}

.current-location a {
    color: #999;
}

.current-location a:hover {
    color: #f00;
}

.current-location a,
.current-location span {
    display: inline-block;
    vertical-align: middle;
}

.current-location i {
    color: #e43;
    font-size: 16px;
    vertical-align: -5px;
}

/* ==========
search
========== */
.search-bar .search-input {
    box-sizing: content-box;
    border: 1px solid #e43;
    color: #999999;
    font-size: 14px;
    height: 20px;
    line-height: 20px;
    outline: none;
    padding: 12px 10px;
    width: 402px;
}

.search-bar .search-input:hover, .search-bar .search-input:focus {
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.search-bar .search-btn {
    background: #e43;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    height: 46px;
    line-height: 46px;
    width: 71px;
    text-align: center;
}

.search-bar .search-btn i {
    font-size: 26px;
    font-weight: 700;
}

.search-bar .search-btn:hover {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

[data-qrcode] {
    display: inline-block;
    vertical-align: top;
}

.loading {
    background: url("../images/loading.gif") 100% 100% center no-repeat;
}

.return-top {
    position: fixed;
    right: 30px;
    bottom: 50px;
    z-index: 999999;
    width: 52px;
    height: 52px;
    text-align: center;
    background: #b8babe;
    cursor: pointer;
}

.return-top .font-icons-33 {
    font-size: 34px;
    line-height: 52px;
    color: #fff;
    cursor: pointer;
}

.return-top:hover {
    background: #e43;
}

span[data-counts] {
    background-position: center center;
}

.mtop9px {
    margin-top: 9px;
}

.logo-align {
    background-position: 3px 3px;
    background-size: 14px;
}

.line-one {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    display: block;
}

.p_wordlink {
    color: #e43;
}

.content-container a {
    color: #e43;
}

.content-container img {
    max-width: 100%;
}

.votebox {
    width: 52px;
    height: 48px;
    position: fixed;
    right: 30px;
    bottom: 102px;
    cursor: pointer;
    background: #fe9b00;
    text-align: center;
    padding-top: 4px;
    font-size: 14px;
    color: #FFF;
    z-index: 10;
}

.votecon {
    display: none;
    width: 350px;
    padding: 0 10px;
}

.votecon p {
    font-weight: bold;
    font-size: 15px;
    height: auto;
    line-height: 20px;
}

.votecon .text li {
    padding: 10px 0 0;
}

.votecon .text-q li {
    margin-left: 24px;
    font-size: 15px;
    color: #333;
    width: 95%;
    height: 30px;
    line-height: 30px;
    position: relative;
    cursor: pointer;
}

.votecon .votebtn1 {
    width: 40px;
    margin-left: 110px;
    margin-top: 10px;
}

.votecon .votebtn1 input {
    background: #13a5ec;
    display: inline-block;
    font-size: 16px;
    border: none;
    height: 32px;
    line-height: 32px;
    padding: 0 24px;
    border-radius: 5px;
    color: #fff;
}

/*# sourceMappingURL=http://localhost:8888/css/global.css.map */
